p{
  line-height: 2;
}
.top-container{
  background-color: #E4F5F9;
  position: relative;
  padding-top: 100px;
}
body{
  color: #40514E;
    margin:0;
    text-align: center;
    /*font-family: sans-serif;*/
    /*font-family: verdana,sans-serif;/*sets the font family for all the text in the body but asks the browser to try and render all the texts in verdana font.*/
    /*if the browser or operarting system do not have this font installed then it will render the default sans-serif font.*/
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;/*here we are going from more specific to less specific.*/
    font-family: 'Merriweather', serif;
  /*  font-size: 2em;*/
  /* font-size in px are static sizes..in which the size of the h1 do not depend on the size of the body that is its parent element.*/
}
h1{
    /*margin-top:50px;*/
    margin: 50px auto 0 auto;
    color: #66BFBF;
    /*line-height: 2;*/
    /*width: 10%;
    margin: 0 auto 0 auto;*/
    font-family: 'Sacramento', cursive;
    /*font-size: 90px;*/
    /*font-size: 562.5%;*//*dynamic font-size*/
  /*  font-size: 5.625em;*//*1em=16px=100%-------1em means the width of the capital letter M.*//*font-size gets inherited from its parent element and is added it to the top of it.*/
  font-size: 5.625rem/*root em..which ignores all the parent settings of the font-size and just set it relative to the root.*/
}
h2{
  color:#66BFBF;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  padding-bottom: 10px;
}
h3{
  font-family: 'Montserrat', sans-serif;
  color: #11999E;
}
.middle-container{
/*  background-color: blue;
  height:200px;
  width: 200px;*/
  margin:100px 0;
}
.bottom-container{
/*  background-color: yellow;
  height:200px;
  width: 200px;*/
  background-color: #66BFBF;
  padding:50px 0 20px;
}
.Web{
  text-decoration: underline;
}
.intro{
  width: 30%;
  margin:auto;
}
.top-cloud{
  position: absolute;
  top: 40px;
  right: 300px;
}
.bottom-cloud{
  position:absolute;
  left:250px;
  bottom: 300px;
}
a{
  color:#11999E;
  font-family: 'Montserrat', sans-serif;
  margin: 10px 20px;
  text-decoration: none;
}
.copyright{
  color:#EAF6F6;
  font-size: 0.75rem;
  padding:20px 0;
}
a:hover{
  color: #EAF6F6;
}
hr{
  border: dotted #EAF6F6 6px;
  height: 2px;
  border-bottom: none;
  width: 4%;
  margin: 100px auto;
}
.contact-me{
  width: 60%;
  margin:40px auto 60px;
}
.skill-row{
  width: 50%;
  margin: 100px auto 100px auto;
  text-align: left;
  /*line-height: 2;*/
}
.coding-img{
  width: 25%;
  float: left;
  margin-right: 30px;
}
.problem-solving-img{
  width: 25%;
  float: right;
  margin-left: 30px;
}
/*.skill-description-1{
  clear: left;/*used to clear its left side that prevents it wrapping anything to its left*/
  /* clear can be considered to be anti-float*/
/*}
/*.skill-description-2{
  clear: right;
}*/
.btn {
  background: #11CDD4;
  background-image: -webkit-linear-gradient(top, #11CDD4, #11999E);
  background-image: -moz-linear-gradient(top, #11CDD4, #11999E);
  background-image: -ms-linear-gradient(top, #11CDD4, #11999E);
  background-image: -o-linear-gradient(top, #11CDD4, #11999E);
  background-image: linear-gradient(to bottom, #11CDD4, #11999E);
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #30E3CB;
  background-image: -webkit-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -moz-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -ms-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: -o-linear-gradient(top, #30E3CB, #2BC4AD);
  background-image: linear-gradient(to bottom, #30E3CB, #2BC4AD);
  text-decoration: none;
}
